home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d20
/
vmgr112.arc
/
VOTEMGR.CTL
< prev
next >
Wrap
Text File
|
1991-09-17
|
6KB
|
203 lines
; votemgr will search its home directory for the file called VOTEMGR.CTL
;
; VOTEMGR.CTL structure
;
; . general options
; . receipt text files
; . voting definition block structure
;
;
; Note: paths MUST be terminated with a backslash '\'
;
; Notation: <...> one item
; {...} one or more items
; [<...>] optional item
;
;
; ---------------------------------------------------------------------
; general options
; ---------------------------------------------------------------------
; user name and registration key
; USERCODE <1stname_lastname> [<regkey>]
usercode Carlos_Terre
; your address
; ADDRESS z:net/node[.point]
address 2:343/108.1
; your net mail directory (-.MSG files)
; NETMAIL <path>
netmail c:\fd\mail\net\
; your work directory. this is where votemgr will store results,
; temporary files, as well as semaphore files.
; defaults to the directory where votemgr.exe is stored.
; [WORKPATH <path>]
workpath c:\vote\work\
; your inbound directory. this is where packets with results
; will be created for tossing into your message base for later export.
; [INBOUND <path>]
inbound c:\fd\file\
; your origin line for votemgr packets
; [ORIGINLINE
; <origin_line>]
originline
# democracy made easy : votemgr #
; default 'moving' directory. messages addressed to votemgr will be
; moved to this directory unless other directory is later specified
; [MOVEPATH <path>]
movepath c:\vote\msg\
; file for logging votemgr activities
; [LOGFILE <file_spec>]
logfile c:\vote\votemgr.log
; receipt message status
; p-private; k-kill; h-hold; c-crash; s-sent; d-direct
; note that if you don't want votemgr to send messages you must flag
; them as SENT
; [STATUS {pkhcsd}]
status pk
; if you want to erase processed messages. default is to flag them Rcvd
; note that those messages subject to be moved will -not- be erased
; even if you set killprocessed.
; [KILLPROCESSED]
;killprocessed
; ---------------------------------------------------------------------
; receipt text files
; ---------------------------------------------------------------------
; these files should contain plain vanilla ASCII texts
;
; NOTE!!! These files are OPTIONAL and you DON'T NEED to use them!!!
;
; "active votings" heading
; [ACTIVETXT <file_spec>]
;activetxt c:\vote\active.txt
; "valid choices" heading
; [CHOICESTXT <file_spec>]
;choicestxt c:\vote\choices.txt
; "return receipt" text
; [RECEIPTTXT <file_spec>]
;receipttxt c:\vote\receipt.txt
; "duplicate vote" text
; [DUPLICATETXT <file_spec>]
;duplicatetxt c:\vote\duplic.txt
; "not a valid choice" text
; [ERRCHOICETXT <file_spec>]
;errchoicetxt c:\vote\errchoi.txt
; "not an active voting" text
; [ERRVOTTXT <file_spec>]
;errvottxt c:\vote\errvot.txt
; "not validated for this voting" text
; [ERRVOTTXT <file_spec>]
;errvaltxt c:\vote\errval.txt
; "ballot received too late"
; [TOOLATETXT <file_spec>]
;toolatetxt c:\vote\toolate.txt
; "ballot received too soon"
; [TOOSOONTXT <file_spec>]
;toosoontxt c:\vote\toosoon.txt
; ---------------------------------------------------------------------
; voting definition block structure
; ---------------------------------------------------------------------
; this block can be repeated as many as 25 times, defining 25 different
; votings
; definition block starter
; electname must be a valid DOS file name (max 8 chars)
; DEFINE <electname>
define NEC343
; validate statements allow you to specify who is allowed to vote.
; ALL macro is supported; read documentation for more details on this.
;
; VALIDATE <address [{address}]>
; [{VALIDATE <address [{address}]>}]
validate 2:343/all.0
; reject statements allow you to specify who is -not- allowed to vote.
; this statement is used to make exceptions to global validations.
; ALL macro is supported.
;
; REJECT <address [{address}]>
; [{REJECT <address [{address}]>}]
reject 2:343/0 2:343/100 2:343/200 2:343/300 2:343/800
; area tag of the echomail area for which packets will be created
; [AREA <area_tag>]
area SYSOP343
; first day of ballot processing (ballots received previous to this
; date will be ignored, and addressee will be notified)
; FROMDATE <mm/dd/yyyy>
fromdate 05/10/1991
; last day of ballot processing (ballots received after this date will
; be ignored, and addressee will be notified)
; TODATE <mm/dd/yyyy>
todate 05/30/1991
; directory where ballots (and only ballots) FOR THIS VOTING will be moved to
; [MOVEPATH <path>]
movepath c:\vote\nec343\
; hides names and addresses when reporting results FOR THIS VOTING
; [PRIVATE]
;private
; accept NULL ballots (ballots with a vote for an unknown choice)
; anything but listed choices will be considered "null" choices
; otherwise a receipt message is generated and ballot is not computed
; [NULLOK]
;nullok
; accept UNLISTED choices in ballots (ballots with a vote for an unknown choice)
; activate this option if you want to accept unlisted choices
; otherwise a receipt message is generated and ballot is not computed
; [UNLISTEDOK]
;unlistedok
; description of the voting to be displayed when listed
; [INFOTXT <file_spec>]
;infotxt c:\vote\necinfo.txt
; heading for results. this text defaults to INFOTXT
; [RESULTTXT <file_spec>]
;resulttxt c:\vote\necresul.txt
; list of valid choices for the voting. only one choice per line.
; choices MUST not contain spaces ' ' but rather underscores '_'
; up to 100 different choices can be defined
; CHOICES
; ...
; ENDCHOICES
choices
Carlos_Terre
Miquel_Piulats
Tirs_Abril
Quim_Balletbo
endchoices
; definition block END marker
; ENDDEF
enddef
; ---------------------------------------------------------------------